home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 6: Level 6 / 17 Bit - Level 6 (1998)(Epic Marketing)[!].iso / quartz / q0527.dms / q0527.adf / count.c < prev    next >
C/C++ Source or Header  |  1991-02-02  |  217b  |  22 lines

  1.  
  2. /*
  3.  *  COUNT.C
  4.  */
  5.  
  6. #include <stdio.h>
  7.  
  8. main(ac, av)
  9. char *av[];
  10. {
  11.     long i;
  12.  
  13.     if (ac == 1) {
  14.     puts("count <startvalue>");
  15.     exit(1);
  16.     }
  17.     for (i = atoi(av[1]); i; --i)
  18.     printf("%d\n", i);
  19.     return(0);
  20. }
  21.  
  22.